Make force the value of shrext to either .dll or .so (it seems like it
authorØyvind Kolås <ok@src.gnome.org>
Wed, 21 Mar 2007 17:12:39 +0000 (17:12 +0000)
committerØyvind Kolås <ok@src.gnome.org>
Wed, 21 Mar 2007 17:12:39 +0000 (17:12 +0000)
* configure.ac: Make force the value of shrext to either .dll or .so
(it seems like it wasn't defined for unixy systems after all).

svn path=/trunk/; revision=231

ChangeLog
configure.ac

index b6b9c9d80813843e69d1af5b415505de73a3d5bc..d582eccc06300e1220137e42368bd124c0489ec3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-03-21  Øyvind Kolås  <pippin@gimp.org>
+
+       * configure.ac: Make force the value of shrext to either .dll or .so
+       (it seems like it wasn't defined for unixy systems after all).
+
 2007-03-13  Michael Schumacher  <schumaml@cvs.gnome.org>
 
        * configure.ac: use PATHSEP (platform-dependent, defined to ';' on
index 3887b6e923dda78e39bf8cd28ee411849d1c6836..03f9a0a2bb6e5795e2e47cdaa72eacb9e18c81b7 100644 (file)
@@ -160,12 +160,14 @@ esac
 #################
 
 AC_MSG_CHECKING([for some Win32 platform])
-case "$target_or_host" in
+case "$target_or_host" in 
   *-*-mingw* | *-*-cygwin*)
     platform_win32=yes
+    shrext=.dll
     ;;
   *)
     platform_win32=no
+    shrext=.so
     ;;
 esac
 AC_MSG_RESULT([$platform_win32])